home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Photology 2.0.116
/
PhotologySetup_redist_x86.exe
/
RCDATA
/
CABINET
/
install.schema.xsd
< prev
next >
Wrap
Extensible Markup Language
|
2007-10-18
|
2KB
|
40 lines
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="InstallInstructions" type="installinstructions" />
<xs:complexType name="installinstructions">
<xs:sequence>
<xs:element name="WindowTitle" type="xs:token" />
<xs:element name="ApplicationName" type="xs:token" />
<xs:element name="ApplicationVersion" type="xs:string" minOccurs="0" />
<xs:element name="ApplicationIcon" type="xs:string" minOccurs="0" />
<xs:element name="ApplicationMSI" type="xs:string" minOccurs="0" />
<xs:element name="ApplicationLaunch" type="xs:string" minOccurs="0" />
<xs:element name="Language" type="xs:language" minOccurs="0" />
<xs:element name="ApplicationReadmePage" type="clickthrupage" />
<xs:element name="DotNetEULAPage" type="clickthrupage" />
<xs:element name="SuccessPage" type="clickthrupage" />
<xs:element name="FailurePage" type="clickthrupage" />
<xs:element name="SlidePage" type="slidepage" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="clickthrupage">
<xs:attribute name="Source" type="xs:string" use="required" />
</xs:complexType>
<xs:complexType name="slidepage">
<xs:attribute name="Source" type="xs:string" use="required" />
<xs:attribute name="Time" type="slidepagetime" use="required" />
</xs:complexType>
<xs:simpleType name="slidepagetime">
<xs:restriction base="xs:integer">
<xs:minInclusive value="500" />
</xs:restriction>
</xs:simpleType>
</xs:schema>